home *** CD-ROM | disk | FTP | other *** search
/ Modeling the Dream / Modeling the Dream CD - Walkthroughs and Flybys II (1994)(Waite Group).iso / programs / mdprime.bat < prev    next >
DOS Batch File  |  1994-08-18  |  438b  |  22 lines

  1. echo Please select your sound card by pressing one of the letters below:
  2. echo:
  3. echo     S if you have a Sound Blaster or compatible 
  4. echo     P for the Sound Blaster Pro, 16 or AWE
  5. echo     G if you have a Gravis UltraSound
  6. echo:
  7. what c "Press either S,P or G now " SPG
  8. echo:
  9. if %what%==P goto s2
  10. if %what%==p goto s2
  11. if %what%==G goto s3
  12. if %what%==g goto s3
  13. set p=S
  14. goto end
  15. :s2
  16. set p=P
  17. goto end
  18. :s3
  19. set p=G
  20. :end
  21.  
  22.